home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / cujoct93.zip / 1110087A < prev    next >
Text File  |  1993-08-10  |  841b  |  36 lines

  1. /* video.h */
  2.  
  3. /* Basic Foreground colors (black background) */
  4. #define BLACK        0
  5. #define BLUE         1
  6. #define GREEN        2
  7. #define CYAN         3
  8. #define RED          4
  9. #define MAGENTA      5
  10. #define BROWN        6
  11. #define LT_GRAY      7
  12. #define DK_GRAY      8
  13. #define LT_BLUE      9
  14. #define LT_GREEN     10
  15. #define LT_CYAN      11
  16. #define LT_RED       12
  17. #define LT_MAGENTA   13
  18. #define YELLOW       14
  19. #define WHITE        15
  20.  
  21. #define NORMAL LT_GRAY
  22.  
  23. /* The following are for monochrome systems */
  24. #define NO_DISPLAY 0
  25. #define UNDERLINE 1
  26. #define REVERSE 0x70
  27.  
  28. /* This makes a basic foreground color a background color */
  29. #define bkgr(c) ((unsigned) c << 4)
  30.  
  31. /* This turns on the high intensity bit */
  32. #define bright(c) (c | 0x08)
  33.  
  34. /* This turns on the blink bit */
  35. #define blink(c) (c | 0x80)
  36.